testing.outputWriter.c (field)

16 uses

	testing (current package)
		testing.go#L1116: 	c.o = &outputWriter{c: c}
		testing.go#L1121: 	c       *common
		testing.go#L1130: 	if o == nil || o.c == nil {
		testing.go#L1133: 	if o.c.destination() == nil {
		testing.go#L1134: 		panic("Write called after " + o.c.name + " has completed")
		testing.go#L1137: 	o.c.mu.Lock()
		testing.go#L1138: 	defer o.c.mu.Unlock()
		testing.go#L1159: 	if !o.c.done && (o.c.chatty != nil) {
		testing.go#L1160: 		if o.c.bench {
		testing.go#L1165: 			o.c.chatty.Printf(o.c.name, "%s%s", indent, b)
		testing.go#L1169: 	o.c.output = append(o.c.output, indent...)
		testing.go#L1170: 	o.c.output = append(o.c.output, b...)